7dbd300bef2ef33ca16aee3abf86a702f166bbec,src/main/java/betterquesting/client/gui/editors/tasks/GuiTaskEditDefault.java,GuiTaskEditDefault,initGui,#,26
Before Change
if(!isDone)
{
this.isDone = true;
this.mc.displayGuiScreen(new GuiJsonEditor(this, json, task.getDocumentation()));
} else
{
this.task.readFromJson(json, EnumSaveType.CONFIG);
After Change
this.isDone = true;
ITask task = quest.getTasks().getValue(tID);
if(task != null)
{
this.mc.displayGuiScreen(new GuiJsonEditor(this, json, task.getDocumentation(), this));
} else
{
this.mc.displayGuiScreen(parent);